diff options
Diffstat (limited to 'app/[lng]/partners/tech-signup/page.tsx')
| -rw-r--r-- | app/[lng]/partners/tech-signup/page.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/partners/tech-signup/page.tsx b/app/[lng]/partners/tech-signup/page.tsx new file mode 100644 index 00000000..d5b019ed --- /dev/null +++ b/app/[lng]/partners/tech-signup/page.tsx @@ -0,0 +1,17 @@ +import { Suspense } from "react"
+import { Metadata } from "next"
+import { TechVendorJoinForm } from "@/components/signup/tech-vendor-join-form"
+import { JoinFormSkeleton } from "@/components/signup/join-form-skeleton"
+
+export const metadata: Metadata = {
+ title: "기술영업 협력업체 등록",
+ description: "기술영업 협력업체 등록 페이지입니다.",
+}
+
+export default function TechVendorSignUpPage() {
+ return (
+ <Suspense fallback={<JoinFormSkeleton/>}>
+ <TechVendorJoinForm />
+ </Suspense>
+ )
+}
\ No newline at end of file |
